home *** CD-ROM | disk | FTP | other *** search
/ QRZ! Ham Radio 4 / QRZ Ham Radio Callsign Database - Volume 4.iso / files / dsp / 56ktools / dspkgctr.z / dspkgctr / gcc / c-tree.h < prev    next >
C/C++ Source or Header  |  1992-06-08  |  5KB  |  157 lines

  1. /* Definitions for C parsing and type checking.
  2.    Copyright (C) 1987 Free Software Foundation, Inc.
  3.  
  4.    $Id: c-tree.h,v 1.2 90/05/23 11:24:25 jeff Exp $
  5.  
  6. This file is part of GNU CC.
  7.  
  8. GNU CC is free software; you can redistribute it and/or modify
  9. it under the terms of the GNU General Public License as published by
  10. the Free Software Foundation; either version 1, or (at your option)
  11. any later version.
  12.  
  13. GNU CC is distributed in the hope that it will be useful,
  14. but WITHOUT ANY WARRANTY; without even the implied warranty of
  15. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  16. GNU General Public License for more details.
  17.  
  18. You should have received a copy of the GNU General Public License
  19. along with GNU CC; see the file COPYING.  If not, write to
  20. the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.  */
  21.  
  22. /* Language-dependent contents of an identifier.  */
  23.  
  24. struct lang_identifier
  25. {
  26.   struct tree_identifier ignore;
  27.   tree global_value, local_value, label_value, implicit_decl;
  28.   tree error_locus;
  29. };
  30.  
  31. /* Macros for access to language-specific slots in an identifier.  */
  32.  
  33. #define IDENTIFIER_GLOBAL_VALUE(NODE)    \
  34.   (((struct lang_identifier *)(NODE))->global_value)
  35. #define IDENTIFIER_LOCAL_VALUE(NODE)    \
  36.   (((struct lang_identifier *)(NODE))->local_value)
  37. #define IDENTIFIER_LABEL_VALUE(NODE)    \
  38.   (((struct lang_identifier *)(NODE))->label_value)
  39. #define IDENTIFIER_IMPLICIT_DECL(NODE)    \
  40.   (((struct lang_identifier *)(NODE))->implicit_decl)
  41. #define IDENTIFIER_ERROR_LOCUS(NODE)    \
  42.   (((struct lang_identifier *)(NODE))->error_locus)
  43.  
  44. /* Nonzero means reject anything that ANSI standard C forbids.  */
  45. extern int pedantic;
  46.  
  47. /* In a RECORD_TYPE or UNION_TYPE, nonzero if any component is read-only.  */
  48. #define C_TYPE_FIELDS_READONLY(type) TYPE_SEP_UNIT (type)
  49.  
  50. /* in c-typecheck.c */
  51. extern tree build_component_ref(), build_conditional_expr(), build_compound_expr();
  52. extern tree build_unary_op(), build_binary_op(), build_function_call();
  53. extern tree build_binary_op_nodefault ();
  54. extern tree build_indirect_ref(), build_array_ref(), build_c_cast();
  55. extern tree build_modify_expr();
  56. extern tree c_sizeof (), c_alignof ();
  57. extern void store_init_value ();
  58. extern tree digest_init ();
  59. extern tree c_expand_start_case ();
  60. extern tree default_conversion ();
  61.  
  62. /* Given two integer or real types, return the type for their sum.
  63.    Given two compatible ANSI C types, returns the merged type.  */
  64.  
  65. extern tree commontype ();
  66.  
  67. /* in c-decl.c */
  68. extern tree build_label ();
  69.  
  70. extern int start_function ();
  71. extern void finish_function ();
  72. extern void store_parm_decls ();
  73. extern tree get_parm_info ();
  74.  
  75. extern void pushlevel ();
  76. extern tree poplevel ();
  77.  
  78. extern tree groktypename(), lookup_name();
  79.  
  80. extern tree lookup_label(), define_label();
  81.  
  82. extern tree implicitly_declare(), getdecls(), gettags ();
  83.  
  84. extern tree start_decl();
  85. extern void finish_decl();
  86.  
  87. extern tree start_struct(), finish_struct(), xref_tag();
  88. extern tree grokfield();
  89.  
  90. extern tree start_enum(), finish_enum();
  91. extern tree build_enumerator();
  92.  
  93. extern tree make_index_type ();
  94.  
  95. #ifdef DSP56000
  96. extern tree ptr_type_node;
  97. #endif
  98. extern tree double_type_node, long_double_type_node, float_type_node;
  99. extern tree char_type_node, unsigned_char_type_node, signed_char_type_node;
  100.  
  101. extern tree short_integer_type_node, short_unsigned_type_node;
  102. extern tree long_integer_type_node, long_unsigned_type_node;
  103. extern tree long_long_integer_type_node, long_long_unsigned_type_node;
  104. extern tree unsigned_type_node;
  105. extern tree string_type_node, char_array_type_node, int_array_type_node;
  106.  
  107. extern int current_function_returns_value;
  108. extern int current_function_returns_null;
  109.  
  110. extern tree ridpointers[];
  111.  
  112. /* Nonzero means `$' can be in an identifier.  */
  113.  
  114. extern int dollars_in_ident;
  115.  
  116. /* Nonzero means allow type mismatches in conditional expressions;
  117.    just make their values `void'.   */
  118.  
  119. extern int flag_cond_mismatch;
  120.  
  121. /* Nonzero means don't recognize the keyword `asm'.  */
  122.  
  123. extern int flag_no_asm;
  124.  
  125. /* Nonzero means warn about implicit declarations.  */
  126.  
  127. extern int warn_implicit;
  128.  
  129. /* Nonzero means warn about function definitions that default the return type
  130.    or that use a null return and have a return-type other than void.  */
  131.  
  132. extern int warn_return_type;
  133.  
  134. /* Nonzero means give string constants the type `const char *'
  135.    to get extra warnings from them.  These warnings will be too numerous
  136.    to be useful, except in thoroughly ANSIfied programs.  */
  137.  
  138. extern int warn_write_strings;
  139.  
  140. /* Nonzero means warn about sizeof(function) or addition/subtraction
  141.    of function pointers.  */
  142.  
  143. extern int warn_pointer_arith;
  144.  
  145. /* Nonzero means warn for all old-style non-prototype function decls.  */
  146.  
  147. extern int warn_strict_prototypes;
  148.  
  149. /* Nonzero means warn about pointer casts that can drop a type qualifier
  150.    from the pointer target type.  */
  151.  
  152. extern int warn_cast_qual;
  153.  
  154. /* Nonzero means do some things the same way PCC does.  */
  155.  
  156. extern int flag_traditional;
  157.